home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 May / PCWorld_2000-05_cd.bin / Software / TemaCD / povray / povwin3.exe / %MAINDIR% / Insert Menu / Misc. Directives / while.txt < prev   
Encoding:
Text File  |  2000-04-06  |  255 b   |  11 lines

  1. // Create 10 balls along X axis, from 0 to 9
  2. #declare BallCount = 0
  3. #while (BallCount < 10)
  4.   sphere
  5.   {
  6.     <BallCount,0,0>,  // NOTE: <0,0,0>, <1,0,0>, <2,0,0>, etc.
  7.     0.5
  8.   }
  9.   #declare BallCount = BallCount+1 // increment our counter
  10. #end
  11.